home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / include / string.h < prev    next >
C/C++ Source or Header  |  1996-11-09  |  589b  |  27 lines

  1. #ifndef UNIX_STRING_H
  2. #define UNIX_STRING_H 1
  3.  
  4. #include "include:string.h"
  5.  
  6. /* Nonstandard routines */
  7. #if !defined(_ANSI_SOURCE) && !defined(_STRICT_ANSI)
  8.  
  9. #ifdef NO_MACROS
  10. #undef index
  11. #undef rindex
  12. #undef bcopy
  13. #undef bcmp
  14. #undef bzero
  15. extern char *index(const char *, int);
  16. extern char *rindex(const char *, int);
  17. extern void bcopy(const void *, void *, size_t);
  18. extern int bcmp(const void *, const void *, size_t);
  19. extern void bzero(void *, size_t);
  20. #endif
  21.  
  22. extern int strcasecmp(const char *, const char *);
  23. extern int strncasecmp(const char *, const char *, size_t);
  24.  
  25. #endif
  26. #endif
  27.